home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / funcs / nonvolatile_funcs.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  1KB  |  29 lines

  1. #ifndef  FUNCS_NONVOLATILE_FUNCS_H
  2. #define  FUNCS_NONVOLATILE_FUNCS_H
  3.  
  4. /*
  5. **
  6. ** Function declarations for ACE Basic
  7. **
  8. ** Note: Translated to ACE by Nils Sjoholm
  9. **
  10. ** Date: 11-Oct-95 TO 14-Oct-95
  11. **
  12. */              
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. /*--- functions in V40 OR higher (Release 3.1) ---*/
  19. DECLARE FUNCTION APTR GetCopyNV( STRPTR appName, STRPTR itemName, LONGINT killRequesters ) LIBRARY nonvolatile
  20. DECLARE FUNCTION FreeNVData( APTR _DATA ) LIBRARY nonvolatile
  21. DECLARE FUNCTION SHORTINT StoreNV( STRPTR appName, STRPTR itemName, APTR _DATA, \
  22.                                    LONGINT length, LONGINT killRequesters ) LIBRARY nonvolatile
  23. DECLARE FUNCTION BOOL DeleteNV( STRPTR appName, STRPTR itemName, LONGINT killRequesters ) LIBRARY nonvolatile
  24. DECLARE FUNCTION STRUCTPTR GetNVInfo( LONGINT killRequesters ) LIBRARY nonvolatile
  25. DECLARE FUNCTION STRUCTPTR GetNVList( STRPTR appName, LONGINT killRequesters ) LIBRARY nonvolatile
  26. DECLARE FUNCTION BOOL SetNVProtection( STRPTR appName, STRPTR itemName, LONGINT mask, \
  27.                                        LONGINT killRequesters ) LIBRARY nonvolatile
  28. #endif   /* FUNCS_NONVOLATILE_FUNCS_H */
  29.